home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Tools / Misc / Digital_Almanac / Install / Developer / damessage.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  478 b   |  33 lines

  1. #ifndef DAMESSAGE_H
  2. #define DAMESSAGE_H
  3. #ifndef EXEC_PORTS_H
  4. #include <exec/ports.h>
  5. #endif
  6.  
  7. #ifndef __cplusplus
  8.  
  9. struct DAMessage
  10. {
  11. struct Message dam_Msg;
  12. double dam_RA,dam_Decl; /* Equatorial geocentric coordinates */
  13. double dam_Az,dam_Ho; /* Azimuth and horizon angle in local system */
  14. };
  15.  
  16. #else
  17.  
  18. struct DAMessage:Message
  19. {
  20. double dam_RA,dam_Decl;
  21. double dam_Az,dam_Ho;
  22. };
  23.  
  24. #endif
  25.  
  26. /*
  27. Warning:
  28. This structure might grow in the future.
  29. Do not rely on its length.
  30. */
  31.  
  32. #endif
  33.